In this step, you'll set up your Universal Windows application and add a C1Scheduler control. For more information on creating a UWP style application, see Creating a UWP Style Application.
Complete these steps:
| Markup |
Copy Code
|
|---|---|
xmlns:Schedule="using:C1.Xaml.Schedule"
|
|
The whole <Page> tag should resemble the following:
| Markup |
Copy Code
|
|---|---|
<Page
x:Class="SchedTest2.MainPage"
xmlns:Schedule="using:C1.Xaml.Schedule"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SchedTest2"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
|
|
| Markup |
Copy Code
|
|---|---|
<Schedule:C1Scheduler Name="sched1" ViewType="Month" Grid.Row="1" Height="500" Width="650"></Schedule:C1Scheduler> |
|
What You've Accomplished
In this topic, you created a Universal Windows application, added assembly references, and added a C1Scheduler control to your application. In the next step, you'll add more XAML markup to your application, adding buttons to control the control's view.